================================================================================
[RPG Maker MV Launcher Version 1.0 Installation Instructions:]
================================================================================
STEP 1
================================================================================
Deploy your game for Windows. Open the folder that it's been deployed for, then put these two files in your game folder: 

Launcher.exe
Launcher.ini 
================================================================================
STEP 2
================================================================================
Open Launcher.ini

You must do this part before the Launcher.exe will work properly: 

ProjectName=Project3

Change this value to the name of your project. If you project folders name is "Bibsy4", then put: 

ProjectName=Bibsy4

If the Launcher.exe doesn't work after this, instead of using your folder name, run your Game.exe file. For ProjectName put whatever is shown on your project's window. 

The following settings are optional: 

AltF4DoesntCloseGame=0

This makes it so that your game can't be closed by Alt+F4.

PrintScreenDisabled=0

Having Print Screen disabled allows your work to be protected from people taking screenshots. They can still find other ways of taking a screenshot, but I thought this would be a neat feature anyway.

================================================================================
STEP 3
================================================================================
To ensure things look nice in fullscreen (not blurred), open the following file in notepad or another text editor: 

package.json

If you have not modified this file before in your game, copy and paste this code into it to replace what you have. If the json is already modified, just add the pieces that aren't there: 

{
    "name": "KADOKAWA/RPGMV",
    "main": "www/index.html",
    "js-flags": "--expose-gc",
    "window": {
        "title": "",
        "toolbar": false,
        "width": 816,
        "height": 624,
        "icon": "www/icon/icon.png",
	"fullscreen": true,
	"resizable": false
    }
}
================================================================================
STEP 4
================================================================================
- Add this to your www/index.html file at the end to keep things pixelated, no blurry fullscreen:

<style type="text/css">
        CANVAS{image-rendering: pixelated;}
</style>
================================================================================